* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.track-order-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.track-order-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.track-order-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #ff6b81;
}

.form-group input {
    width: 100%;
    max-width: 400px;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    margin: 0 auto;
}

.track-btn {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    background-color: #ff6b81;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.track-btn:hover {
    background-color: #ff4757;
}

.track-btn i {
    margin-left: 0.5rem;
}

.order-status-container {
    margin-top: 2rem;
}

.status-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2rem;
}

.status-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ddd;
    z-index: 1;
}

.status-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 1rem;
}

.status-step i {
    font-size: 1.5rem;
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    color: #ddd;
    margin-bottom: 0.5rem;
}

.status-step p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.status-step span {
    font-size: 0.9rem;
    color: #999;
}

.status-step.completed i {
    color: #4caf50;
}

.status-step.active i {
    color: #ff6b81;
}

.order-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.order-details h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    background-color: #fff;
    padding: 1rem;
    border-radius: 4px;
}

.detail-item span {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 1.1rem;
    color: #333;
}

@media (max-width: 768px) {
    .track-order-container {
        padding: 1rem;
    }

    .track-order-title {
        font-size: 2rem;
    }

    .status-timeline {
        flex-direction: column;
        align-items: flex-start;
    }

    .status-timeline::before {
        display: none;
    }

    .status-step {
        text-align: left;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .status-step i {
        display: inline-block;
        margin-right: 0.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }
}